home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / nan_news / toolkit / qtr.prg < prev    next >
Text File  |  1991-08-15  |  4KB  |  121 lines

  1. /*
  2.  * File......: QTR.PRG
  3.  * Author....: Jo W. French dba Practical Computing
  4.  * CIS ID....: 74731,1751
  5.  * Date......: $Date:   15 Aug 1991 23:04:28  $
  6.  * Revision..: $Revision:   1.2  $
  7.  * Log file..: $Logfile:   E:/nanfor/src/qtr.prv  $
  8.  * 
  9.  * The functions contained herein are the original work of Jo W. French
  10.  * and are placed in the public domain.
  11.  *
  12.  * Modification history:
  13.  * ---------------------
  14.  *
  15.  * $Log:   E:/nanfor/src/qtr.prv  $
  16.  * 
  17.  *    Rev 1.2   15 Aug 1991 23:04:28   GLENN
  18.  * Forest Belt proofread/edited/cleaned up doc
  19.  * 
  20.  *    Rev 1.1   14 Jun 1991 19:52:44   GLENN
  21.  * Minor edit to file header
  22.  * 
  23.  *    Rev 1.0   01 Apr 1991 01:02:04   GLENN
  24.  * Nanforum Toolkit
  25.  *
  26.  */
  27.  
  28. /*  $DOC$
  29.  *  $FUNCNAME$
  30.  *     FT_QTR()
  31.  *  $CATEGORY$
  32.  *     Date/Time
  33.  *  $ONELINER$
  34.  *     Return Calendar or Fiscal Quarter Data.
  35.  *  $SYNTAX$
  36.  *     FT_QTR( [ <dGivenDate> ], [ <nQtrNum> ] ) -> aDateInfo
  37.  *  $ARGUMENTS$
  38.  *     <dGivenDate> is any valid date in any date format.  Defaults
  39.  *     to current system date if not supplied.
  40.  *
  41.  *     <nQtrNum> is a number from 1 to 4 signifying a quarter.
  42.  *     Defaults to current quarter if not supplied.
  43.  *  $RETURNS$
  44.  *     A three element array containing the following data:
  45.  *
  46.  *        aDateInfo[1] - The year and quarter as a character string "YYYYQQ"
  47.  *        aDateInfo[2] - The beginning date of the quarter
  48.  *        aDateInfo[3] - The ending date of the quarter
  49.  *  $DESCRIPTION$
  50.  *     FT_QTR() returns an array containing data about the quarter
  51.  *     containing the given date.
  52.  *
  53.  *     Normally the return data will be based on a year beginning
  54.  *     on January 1st with weeks beginning on Sunday.
  55.  *
  56.  *     The beginning of year date and/or beginning of week day can be
  57.  *     changed by using FT_DATECNFG(), which will affect all subsequent
  58.  *     calls to FT_QTR() until another call to FT_DATECNFG().
  59.  *
  60.  *     The beginning of year date and beginning of week day may be reset
  61.  *     to January 1 and Sunday by calling FT_DATECNFG() with no
  62.  *     parameters.
  63.  *  $EXAMPLES$
  64.  *     // get info about quarter containing 9/15/90
  65.  *     aDateInfo := FT_MONTH( CTOD("09/15/90") )
  66.  *     ? aDateInfo[1]   //  199009       (3rd quarter)
  67.  *     ? aDateInfo[2]   //  07/01/90     beginning of quarter 3
  68.  *     ? aDateInfo[3]   //  09/30/90     end of week quarter 3
  69.  *
  70.  *     // get info about quarter 2 in year containing 9/15/90
  71.  *     aDateInfo := FT_MONTH( CTOD("09/15/90"), 2 )
  72.  *     ? aDateInfo[1]   //  199002
  73.  *     ? aDateInfo[2]   //  04/01/90   beginning of quarter 2
  74.  *     ? aDateInfo[3]   //  06/30/90   end of quarter 2
  75.  *
  76.  *     // get info about quarter 2 in current year
  77.  *     aDateInfo := FT_MONTH( , 2 )
  78.  *     ? aDateInfo[1]   //  199102
  79.  *     ? aDateInfo[2]   //  04/01/91   beginning of quarter 2
  80.  *     ? aDateInfo[3]   //  06/30/91   end of quarter 2
  81.  *  $SEEALSO$
  82.  *     FT_DATECNFG() FT_WEEK() FT_MONTH() FT_YEAR()
  83.  *  $END$
  84. */
  85.  
  86. FUNCTION FT_QTR(dGivenDate,nQtrNum)
  87. LOCAL lIsQtr, nCtr, dQStart, dQEnd, aRetVal
  88.  
  89.   IF dGivenDate == NIL .OR. !VALTYPE(dGivenDate) $ 'ND'
  90.      dGivenDate := DATE()
  91.   ELSEIF VALTYPE(dGivenDate) == 'N'
  92.      nQtrNum    := dGivenDate
  93.      dGivenDate := DATE()
  94.   ENDIF
  95.  
  96.   lIsQtr  := IF(nQtrNum == NIL .OR. VALTYPE(nQtrNum) != 'N', .F., .T.)
  97.   nQtrNum := IF(lIsQtr, IF(nQtrNum > 0 .AND. nQtrNum < 5, ;
  98.                              nQtrNum, 4), NIL)
  99.  
  100.   aRetval := FT_YEAR(dGivenDate)
  101.   dQStart := aRetVal[2]
  102.  
  103.   FOR nCtr = 0 TO 3
  104.      dQEnd   := FT_MADD(dQStart, 3) - 1
  105.  
  106.      IF lIsQtr .AND. nCtr == nQtrNum - 1
  107.         EXIT
  108.      ELSEIF !lIsQtr .AND. dGivenDate >= dQStart .AND. dGivenDate <= dQEnd
  109.         EXIT
  110.      ENDIF
  111.  
  112.      dQStart := FT_MADD(dQStart, 3)
  113.   NEXT
  114.  
  115.   aRetVal[1] += PADL(LTRIM(STR(nCtr + 1, 2)), 2, '0')
  116.   aRetVal[2] := dQStart
  117.   aRetVal[3] := dQEnd
  118.  
  119. RETURN aRetVal
  120.  
  121.